home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ident / tools / tcplist-1.1.shar / kvm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-14  |  198 b   |  17 lines

  1. #ifndef __KVM_H__
  2. #define __KVM_H__
  3.  
  4. typedef struct
  5. {
  6.   int fd;
  7.   char *namelist;
  8. } kvm_t;
  9.  
  10.  
  11. extern kvm_t *kvm_open();
  12. extern int kvm_close();
  13. extern int kvm_nlist();
  14. extern int kvm_read();
  15.  
  16. #endif
  17.